home *** CD-ROM | disk | FTP | other *** search
/ Mesolore / Mesolore - Disc 1.iso / pc / data / Buttons.cst / 00041_Script_41 < prev    next >
Text File  |  2001-04-13  |  656b  |  28 lines

  1. Global gshowBalloons, gShowText, gShowOrder
  2.  
  3. on exitFrame
  4.   
  5.     if gshowBalloons then 
  6.       set the member of sprite(3) = "showballoons_x"
  7.     else
  8.       set the member of sprite(3) = "showballoons_n"
  9.     end if
  10.     if gShowText then 
  11.       set the member of sprite(5) = "ShowText_x"
  12.     else
  13.       set the member of sprite(5) = "ShowText_n"
  14.     end if
  15.     if gShowOrder then 
  16.       set the member of sprite(4) = "ShowOrder_x"
  17.     else
  18.       set the member of sprite(4) = "ShowOrder_n"
  19.     end if
  20.     repeat with x = 3 to 5
  21.     if rollover(x) then
  22.       roll x
  23.     else
  24.       unroll x
  25.     end if
  26.   end repeat
  27.   go the frame
  28. end